home *** CD-ROM | disk | FTP | other *** search
/ Personal Computer World 2007 September / PCWSEP07.iso / Software / Linux / Linux Mint 3.0 Light / LinuxMint-3.0-Light.iso / casper / filesystem.squashfs / etc / vnc.conf < prev    next >
Encoding:
Text File  |  2006-07-04  |  4.5 KB  |  104 lines

  1. # /etc/vnc.conf written by Marcus Brinkmann. This file is in the Public Domain.
  2. #
  3. # This is the configuration file for the vncserver package.
  4. # It is perl syntax, but only variable assignment is allowed.
  5. # A semicolon will be added if missing.
  6. # Every value has suitable defaults, so you probably don't need any file.
  7. #
  8. # This file will be sourced by `vncserver' and `vncpasswd'.
  9. # After this file, $(HOME)/.vncrc will be sourced, so values can be
  10. # overwritten on a per-user basis. If you want to reactivate the default
  11. # value there, you have to specify an empty value. For example, $fontPath
  12. # will set to the default value after
  13. #
  14. # $fontPath = "/foo";
  15. # $fontPath = "";
  16. #
  17. # If you are missing something, please let me know.
  18. # Marcus.Brinkmann@ruhr-uni-bochum.de
  19.  
  20. # System configuration
  21. # --------------------
  22. #
  23. # This section contains entries that should be true for all users.
  24.  
  25. # $vncClasses should be the path to the java classes of server.
  26. # $vncClasses = "/usr/share/vncserver";
  27.  
  28. # $XFConfigPath   can be set to the global XF86Config file. This will be
  29. #                 parsed to gain default values for $fontPath and $colorPath.
  30. #                 If you want to disable this feature, point it to an
  31. #                 invalid file, "/foo" for example.
  32. # $XFConfigPath = "/etc/X11/XF86Config";
  33.  
  34. # $fontPath should be a comma seperated list of fonts to be added to the font
  35. #           path. If not specified, and $XFConfigPath is valid, vncserver
  36. #           will read the $fontPath from there. If both are not set, the
  37. #           default will apply.
  38. # Example: $fontPath = "tcp/localhost:7100";     # would make vnc to use xfs.
  39. # Example: $fontPath = "";
  40. #    $fontPath .= "/usr/X11R6/lib/X11/fonts/misc/,";
  41. #     $fontPath .= "/usr/X11R6/lib/X11/fonts/75dpi/:unscaled,";
  42. #     $fontPath .= "/usr/X11R6/lib/X11/fonts/100dpi/:unscaled,";
  43. #     $fontPath .= "/usr/X11R6/lib/X11/fonts/Type1/,";
  44. #     $fontPath .= "/usr/X11R6/lib/X11/fonts/Speedo/,";
  45. #     $fontPath .= "/usr/X11R6/lib/X11/fonts/75dpi/,";
  46. #     $fontPath .= "/usr/X11R6/lib/X11/fonts/100dpi/,";
  47. #    $fontPath .= "/usr/X11R6/lib/X11/fonts/freefont/,";
  48. #    $fontPath .= "/usr/X11R6/lib/X11/fonts/sharefont/";
  49. # I don't know what the default is, though.
  50.  
  51. # $colorPath should be the RGB file to be used by X. This can also be taken from
  52. #            XF86Config file if specified by $XFConfigPath
  53. # $colorPath = "/usr/X11R6/lib/X11/rgb";
  54.  
  55. # User configuration
  56. # ------------------
  57. #
  58. # This section contains entries that may change from user to user.
  59.  
  60. # $vncUserDir contains the filename for the log files directory of Xvnc
  61. #             (the server) and the viewers that are connected to it.
  62. # $vncUserDir = "$ENV{HOME}/.vnc";
  63.  
  64. # $vncPasswdFile contains the filename of the password file for Xvnc.
  65. # $vncPasswdFile = $vncUserDir . "/passwd";
  66.  
  67. # $vncStartup points to a script that will be started at the very beginning.
  68. # $vncStartup = "/etc/X11/Xsession";
  69.  
  70. # $xauthorityFile should be the path to the authority file that should be used
  71. #                 by your vnc X server.
  72. # $xauthorityFile = "$ENV{HOME}/.Xauthority";
  73.  
  74. # $defaultDesktopName should be set to the default name of the desktop.
  75. #                     This can be changed at the command line with -name.
  76. # $defaultDesktopName = "X";
  77.  
  78. # $geometry sets framebuffer width & height. Default will be calculated if
  79. #           server is started from within a running X servers. Can be changed at
  80. #           the commandline (-geometry). A fixed default will be used if
  81. #           vncserver is not invoked in a running X session.
  82. # Example:  $geometry ="640x480";
  83.  
  84. # $depth       sets the framebuffer color depth. Must be between 8 and 32.
  85. # $pixelformat sets the default pixelformat.
  86. #              The default will be calculated if none of both is specified
  87. #              and when vncserver is called from within a running X servers.
  88. #              Can be changed at the command line with option -depth.
  89. #              A fixed default value will be used if vncserver is not
  90. #              invoked in a running X session.
  91. # Example:  $depth = "16";
  92. #           $pixelformat = "rgb565";
  93.  
  94. # $getDefaultFrom sets the display from which you can query the default of
  95. #                 the above three options, if you don't want to start vncserver
  96. #                 from within a running X server. It will be added to the call
  97. #                 of xdpyinfo.
  98. #                 It is useful to get the default from the X server you will
  99. #                 run xvncviewer in.
  100. # Example:  $getDefaultFrom = "-display localhost:0"
  101.  
  102. # $rfbwait sets the maximum time in msec to wait for vnc client viewer.
  103. # $rfbwait = "120000";
  104.